Multipurpose shell syntax. More information: https://www.gnu.org/software/bash/manual/bash.html.
echo ${HOME}work
echo {1..3} {a..c}{dir1,dir2,dir3}
variable is set before returning text:echo ${variable:+variable is set and contains $variable}
variable is unset:echo ${variable:-default}
variable length in characters:echo ${#variable}
echo ${variable:3:7}
variable:echo ${!variable}
{ {{command1; command2; ...}} } | {{another_command}}